home *** CD-ROM | disk | FTP | other *** search
- /*
- * archie.h : Definitions for the programmatic Prospero interface to Archie
- *
- * Written by Brendan Kehoe (brendan@cs.widener.edu),
- * George Ferguson (ferguson@cs.rochester.edu), and
- * Clifford Neuman (bcn@isi.edu).
- */
-
- /* You can't touch this. */
- #ifndef XARCHIE
- # define ARCHIES "archie.ans.net (USA [NY])","archie.rutgers.edu (USA [NJ])","archie.sura.net (USA [MD])","archie.unl.edu (USA [NE])","archie.mcgill.ca (Canada)","archie.funet.fi (Finland/Mainland Europe)","archie.au (Australia)","archie.doc.ic.ac.uk (Great Britain/Ireland)"
- # define NARCHIES 8
- #endif
-
- /*
- * Default value for max hits. Note that this is normally different
- * for different client implementations. Doing so makes it easier to
- * collect statistics on the use of the various clients.
- */
- #ifdef VMS
- # define MAX_HITS 98 /* VMS Client */
- #else
- # ifdef XARCHIE
- # define MAX_HITS 99 /* X Client */
- # else
- # define MAX_HITS 95 /* Normal client */
- # endif
- #endif
-
- /*
- * CLIENT_VERSION may be used to identify the version of the client if
- * distributed separately from the Prospero distribution. The version
- * command should then identify both the client version and the Prospero
- * version identifiers.
- */
- #ifdef XARCHIE
- # define CLIENT_VERSION "1.3-X"
- #else
- # define CLIENT_VERSION "1.3.2"
- #endif
-
- /* Procedures from user/aquery.c */
-
- /* archie_query(host,string,max_hits,offset,query_type,cmp_proc,flags) */
- extern VLINK archie_query();
-
- /* defcmplink(p,q) and invdatecmplink(p,q) */
- extern int defcmplink(); /* Compare by host then by filename */
- extern int invdatecmplink(); /* Compare links inverted by date */
-
- /* Definitions for the comparison procedures */
- #define AQ_DEFCMP defcmplink
- #define AQ_INVDATECMP invdatecmplink
-
- /* Flags */
- #define AQ_NOSORT 0x01 /* Don't sort */
- #define AQ_NOTRANS 0x02 /* Don't translate Archie responses */
-